home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / gmp-132.lha / gmp-1.3.2 / mpz_inp_raw.c < prev    next >
C/C++ Source or Header  |  1993-05-02  |  2KB  |  73 lines

  1. /* mpz_inp_raw -- Input a MP_INT in raw, but endianess, and wordsize
  2.    independent format (as output by mpz_out_raw).
  3.  
  4. Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  5.  
  6. This file is part of the GNU MP Library.
  7.  
  8. The GNU MP Library is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. The GNU MP Library is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with the GNU MP Library; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. #include <stdio.h>
  23.  
  24. #include "gmp.h"
  25. #include "gmp-impl.h"
  26.  
  27. void
  28. #ifdef __STDC__
  29. mpz_inp_raw (MP_INT *x, FILE *file)
  30. #else
  31. mpz_inp_raw (x, file)
  32.      MP_INT *x;
  33.      FILE *file;
  34. #endif
  35. {
  36.   int i;
  37.   mp_size s;
  38.   mp_size xsize;
  39.   mp_ptr xp;
  40.   unsigned int c;
  41.   mp_limb x_digit;
  42.   mp_size x_index;
  43.  
  44.   xsize = 0;
  45.   for (i = 4 - 1; i >= 0; i--)
  46.     {
  47.       c = fgetc (file);
  48.       xsize = (xsize << BITS_PER_CHAR) | c;
  49.     }
  50.  
  51.   /* ??? Sign extend xsize for non-32 bit machines?  */
  52.  
  53.   x_index = (ABS (xsize) + BYTES_PER_MP_LIMB - 1) / BYTES_PER_MP_LIMB - 1;
  54.  
  55.   if (x->alloc < x_index)
  56.     _mpz_realloc (x, x_index);
  57.  
  58.   xp = x->d;
  59.   x->size = xsize / BYTES_PER_MP_LIMB;
  60.   x_digit = 0;
  61.   for (s = ABS (xsize) - 1; s >= 0; s--)
  62.     {
  63.       i = s % BYTES_PER_MP_LIMB;
  64.       c = fgetc (file);
  65.       x_digit = (x_digit << BITS_PER_CHAR) | c;
  66.       if (i == 0)
  67.     {
  68.       xp[x_index--] = x_digit;
  69.       x_digit = 0;
  70.     }
  71.     }
  72. }
  73.